Add Kyc Details
PUT /api/v1/businesses/:businessId/kyc
Description
Add KYC details
Request
-
URL:
/api/v1/businesses/:businessId/kyc -
Auth: Bearer Token
Headers
-
Content-Type: application/json -
Authorization: Bearer (Added as a part of the security scheme)
/api/v1/businesses/:businessId/kyc
Headers
| Content-Type | Value |
|---|---|
| Content-Type | application/json |
Body (raw)
{
"userId": "<string>",
"kycDetails": {
"businessDetails": {
"registeredDate": "<dateTime>",
"registeredBusinessAddress": "<string>",
"operatingAddress": "<string>",
"proofOfBusinessAddress": "<string>",
"natureOfBusiness": "<string>",
"taxIdentificationNumber": "<string>",
"incorporationType": "<string>",
"incorporationNumber": "<string>",
"cacStatusReport": "<string>",
"certificateOfIncorporation": "<string>",
"articlesOfAssociation": "<string>",
"directorsProofOfAddress": [
"<string>",
"<string>"
],
"shareHoldersProofOfAddress": [
"<string>",
"<string>"
]
},
"additionalDirector": {
"firstName": "<string>",
"middleName": "<string>",
"lastName": "<string>",
"dob": "<string>",
"gender": "FEMALE",
"email": "<string>",
"bvn": "<string>",
"nin": "<string>"
}
}
}
🔑 Authentication bearer
| Param | value | Type |
|---|---|---|
| token | bearerToken | string |
Response: 200
LANGUAGE
CURL REQUEST
curl --request PUT \
--url /api/v1/businesses/:businessId/kyc \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!